* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body, html {
    height: 100%;
    font-family: 'Bebas Neue', sans-serif;
    background-color: #000;
  }

   /* About Section */

.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh; 
    background-color: #000; 
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
    overflow: hidden;
  }
  
  .text-content {
    flex: 1;
    padding-right: 20px;
  }
  
  .text-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .text-content p {
    font-size: 2.7rem;
    line-height: 1.4;
    font-weight: 400;
  }
  
  .highlight {
    font-weight: 700;
    color: #d7ff00; 
  }

  .cta-button {
    display: inline-block;
    font-size: 1.5rem;
    color: #ffffff;
    text-decoration: none;
    margin-top: 20px;
    padding: 10px 20px;
    border: 2px solid #d7ff00;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 25px;
    padding-right: 25px;
    transition: all .3s linear;
  }
  
  .cta-button:hover{
    color: #000000;
    background: #d7ff00;
    transition: all .3s linear;
  }
  
  .cta-button .arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    
  }
  
  .cta-button:hover .arrow {
    opacity: 1;
    transform: translateX(5px); 
  }
  
  
  
  .images-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  
  .image-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(100px); 
    transition: transform 1s ease, opacity 1s ease;
  }
  
  .image-content img {
    width: 100%;
    max-width: 450px; 
    height: auto;
    border-radius: 5px;
    object-fit: cover;
  }
  
  .secondary-image {
    position: absolute;
    top: 80%; 
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2); 
    opacity: 0;
    z-index: 1;
    transition: transform 1s ease, opacity 1s ease;
  }
  
  .secondary-image img {
    width: 120%; 
    max-width: 500px; 
    height: auto;
    border-radius: 5px;
    object-fit: cover;
  }
  
  
  .image-content.in-view {
    opacity: 1;
    transform: translateX(0);
  }
  
  .secondary-image.in-view {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.6); 
  }
  
  
  
  @media (max-width: 768px) {
    .about-section {
      flex-direction: column;
      text-align: center;
    }
  
    .text-content {
      padding-right: 0;
      margin-bottom: 20px;
    }
    .text-content h1 {
      font-size: 2.5rem;
    }
  
    .text-content p {
      font-size: 1.2rem;
    }
  
    .image-content img {
      max-width: 270px;
    }
  
    .secondary-image {
      top: 60%; 
      left: 5%;
    }
  
    .secondary-image img {
      width: 200%; 
      max-width: 400px;
    }
    
  }
  
  @media (max-width: 480px) {
    .text-content h1 {
      font-size: 2rem;
    }
  
    .text-content p {
      font-size: 1rem;
    }
  
    .image-content img {
      max-width: 250px;
    }
  
    .secondary-image {
      top: 62%; 
      left: 15%;
    }
  
    .secondary-image img {
      width: 150%; 
      max-width: 350px;
    }
  }
  
  @media (min-width: 400px) and (max-width:430px){
    .text-content h1{
      font-size: 3rem;
    }
    .text-content p{
      font-size: 1.5rem;
    }
  }
  